home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000162_news@newsmaster….columbia.edu _Wed Oct 22 10:21:02 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA22785
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 22 Oct 1997 10:21:02 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA18054
  7.     for kermit.misc@watsun; Wed, 22 Oct 1997 10:21:01 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: kermit/modem help
  12. Date: 22 Oct 1997 14:20:59 GMT
  13. Organization: Columbia University
  14. Lines: 28
  15. Message-ID: <62l24b$f47$1@apakabar.cc.columbia.edu>
  16. References: <344CF921.4990@bnr.ca>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7941
  19.  
  20. In article <344CF921.4990@bnr.ca>,
  21. Malik Ajani (saint786@hotmail.com) <ajani@bnr.ca> wrote:
  22. : I have installed kermit on two pc's running linux.
  23. : They have modems.
  24. : I set one pc in autoanswer and server mode.
  25. : then call it connection doen't take place.
  26. The current version of Kermit for Linux is C-Kermit 6.0:
  27.  
  28.   http://www.columbia.edu/kermit/ck60.html
  29.  
  30. It includes an ANSWER command that makes it answer the
  31. phone.  Normally you would make a script something like
  32. this:
  33.  
  34.   set modem type usr ; or whatever
  35.   set line /dev/cua  ; or whatever
  36.   set speed 57600    ; or whatever
  37.   disable bye
  38.   while true {       ; Accept incoming calls forever
  39.       answer
  40.       server         ; When call arrives, enter server mode
  41.       hangup         ; If they "finish" go back and wait for another call
  42.   }
  43.  
  44. See the manual for details.
  45.  
  46. - Frank